gulp is a toolkit for automating painful or time-consuming tasks in your development workflow, so you can stop messing around and build something.
In order to utilize Gulp you will need to have installed Node.js on your computer. Also insure that you have NPM (node packaged modules) installed.
Run the following commands
gulp globally by running the command npm install -g gulpnpm install.
Once you have succesfully setup now you can use MegaDin Gulp CLI commands to automate your task.
gulp buildThis will automatically create and minify your assets resources like css and js into a folder called dist/
gulp watchThis will automaically compile the SASS and JS files, and minify them as well on save.
gulp serveThis will automaically connect to a local server http://localhost:8080/ and open index.html page to your default browser. And will automaically compile the SASS, JS and .html files on save.